Plan stuff. Log stuff.
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.
 
 
 
 
 

66 lines
1.2 KiB

const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const path = require("path");
const mode = process.env.NODE_ENV || "development";
const prod = mode === "production";
module.exports = {
entry: {
bundle: ["./src/main.js"]
},
resolve: {
alias: {
svelte: path.resolve("node_modules", "svelte")
},
extensions: [".mjs", ".js", ".svelte"],
mainFields: ["svelte", "browser", "module", "main"]
},
output: {
path: __dirname + "/public",
filename: "[name].js",
chunkFilename: "[name].[id].js"
},
module: {
rules: [
{
test: /\.svelte$/,
use: {
loader: "svelte-loader",
options: {
emitCss: true,
hotReload: true
}
}
},
{
test: /\.css$/,
use: [
/**
* MiniCssExtractPlugin doesn"t support HMR.
* For developing, use "style-loader" instead.
* */
prod ? MiniCssExtractPlugin.loader : "style-loader",
"css-loader"
]
}
]
},
mode,
plugins: [
new MiniCssExtractPlugin({
filename: "[name].css"
}),
],
devtool: prod ? false: "source-map",
devServer: {
historyApiFallback: true,
proxy: {
"/api": {
"changeOrigin": true,
"cookieDomainRewrite": "localhost",
"target": "http://localhost:8001",
},
},
},
};