Skip to content

Не генерируется js.map #65

@VictorKrasnov

Description

@VictorKrasnov

Что делать, если после сборки в консоли стабильно выдает ошибку:

[Error] Failed to load resource: the server responded with a status of 403 (Forbidden) (otbor.bundle.js.map, line 0)

Вот такой у меня bundle.config.js:

const vuePlugin = require('rollup-plugin-vue');
const commonjs = require('rollup-plugin-commonjs');
const alias = require('rollup-plugin-alias');
const path = require('path');

const projectRootDir = path.resolve(__dirname);

module.exports = {
	input: 'src/otbor.js',
	output: 'dist/otbor.bundle.js',
	namespace: 'BX.otbor',
	plugins: {
		resolve: true,
		custom: [
			vuePlugin(),
			commonjs(),
			alias({
				resolve: ['.js','.vue'],
				entries: [
					{ find: 'vue', replacement: projectRootDir+'/node_modules/vue/dist/vue.js' }
				]
			})
		],
	}
};

И такой config.php:

<?php
if (!defined('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true)
{
	die();
}

return [
	'css' => 'dist/otbor.bundle.css',
	'js' => 'dist/otbor.bundle.js',
	'rel' => [
		'main.polyfill.core',
		'v-debounce',
	],
	'skip_core' => true,
];

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions