You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pingAnQiYeWeb/vue.config.js

40 lines
934 B

7 months ago
const CopyWebpackPlugin = require("copy-webpack-plugin");
1 year ago
module.exports = {
7 months ago
publicPath: "/",
1 year ago
configureWebpack: {
plugins: [
new CopyWebpackPlugin([
7 months ago
{
from: "node_modules/@liveqing/liveplayer/dist/component/crossdomain.xml",
},
{
from: "node_modules/@liveqing/liveplayer/dist/component/liveplayer.swf",
},
{
from: "node_modules/@liveqing/liveplayer/dist/component/liveplayer-lib.min.js",
to: "js/",
},
1 year ago
// {
// patterns: [{
// from: './public/static', to: 'static'
// }]
// }
7 months ago
]),
1 year ago
],
// externals: {
// 'BMap': 'BMap',
// 'BMap_Symbol_SHAPE_POINT': 'BMap_Symbol_SHAPE_POINT'
// }
9 months ago
},
7 months ago
css: {
loaderOptions: {
sass: {
prependData: `@import "~@/loveflow/assets/index.scss";`,
},
},
},
devServer: {
port: "2911",
},
};