mirror of https://github.com/logos-co/open-law.git
del: source map from bundle
This commit is contained in:
parent
97bf158b7b
commit
7325382484
|
@ -9,3 +9,6 @@ node_modules/
|
|||
.env
|
||||
*.pyc
|
||||
/*.sqlite3
|
||||
|
||||
# typescrypt generated files
|
||||
/app/static/js/*.d.ts
|
||||
|
|
142590
app/static/js/main.js
142590
app/static/js/main.js
File diff suppressed because one or more lines are too long
|
@ -1,29 +1,22 @@
|
|||
//webpack.config.js
|
||||
const path = require("path");
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
mode: "development",
|
||||
devtool: "inline-source-map",
|
||||
entry: {
|
||||
main: "./src/main.ts",
|
||||
main: './src/main.ts',
|
||||
},
|
||||
output: {
|
||||
path: path.resolve(__dirname, "./app/static/js"),
|
||||
filename: "main.js", // <--- Will be compiled to this single file
|
||||
path: path.resolve(__dirname, './app/static'),
|
||||
filename: 'js/main.js', // <--- Will be compiled to this single file
|
||||
},
|
||||
resolve: {
|
||||
extensions: [".ts", ".tsx", ".js"],
|
||||
extensions: ['.ts', '.tsx', '.js'],
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
loader: "ts-loader",
|
||||
},
|
||||
{
|
||||
test: /\.css$/i,
|
||||
include: path.resolve(__dirname, 'src'),
|
||||
use: ['style-loader', 'css-loader', 'postcss-loader'],
|
||||
loader: 'ts-loader',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue