Initial checkin

This commit is contained in:
CheddarCrisp 2020-02-01 12:16:09 -05:00
parent 260fdfc0a2
commit aace75679a
12 changed files with 5726 additions and 1 deletions

22
webpack.config.js Normal file
View file

@ -0,0 +1,22 @@
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'dist')
},
devServer: {
contentBase: './dist'
},
module: {
rules: [
{
test: /\.svelte$/,
exclude: /node_modules/,
loader: 'svelte-loader'
}
]
},
devtool: 'inline-source-map'
}