23 lines
377 B
JavaScript
23 lines
377 B
JavaScript
|
module.exports = {
|
||
|
// options...
|
||
|
devServer: {
|
||
|
disableHostCheck: true,
|
||
|
port: 8881,
|
||
|
host: "shitposter.club",
|
||
|
},
|
||
|
chainWebpack: (config) => {
|
||
|
config.module.rules.delete("svg");
|
||
|
},
|
||
|
configureWebpack: {
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.svg$/,
|
||
|
loader: "vue-svg-loader",
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
plugins: [],
|
||
|
},
|
||
|
};
|