Fable app
This commit is contained in:
21
RaftFable/webpack.config.js
Normal file
21
RaftFable/webpack.config.js
Normal file
@@ -0,0 +1,21 @@
|
||||
// Note this only includes basic configuration for development mode.
|
||||
// For a more comprehensive configuration check:
|
||||
// https://github.com/fable-compiler/webpack-config-template
|
||||
|
||||
var path = require("path");
|
||||
|
||||
module.exports = {
|
||||
mode: "development",
|
||||
entry: "./src/App.fs.js",
|
||||
output: {
|
||||
path: path.join(__dirname, "./public"),
|
||||
filename: "bundle.js",
|
||||
},
|
||||
devServer: {
|
||||
publicPath: "/",
|
||||
contentBase: "./public",
|
||||
port: 8080,
|
||||
},
|
||||
module: {
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user