token-gallery-frontend/vue.config.js

23 lines
377 B
JavaScript
Raw Normal View History

2025-01-18 12:33:45 +00:00
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: [],
},
};