Create webpack config for config app
further improve developer morale get initial angular loading Add remote css to config index Starts work to port endpoints into config app Add the api blueprint
This commit is contained in:
parent
15c15faf30
commit
d080ca2cc6
49 changed files with 8996 additions and 153 deletions
60
config_app/webpack.config.js
Normal file
60
config_app/webpack.config.js
Normal file
|
@ -0,0 +1,60 @@
|
|||
const webpack = require('webpack');
|
||||
const path = require('path');
|
||||
|
||||
let config = {
|
||||
entry: {
|
||||
configapp: "./js/main.ts"
|
||||
},
|
||||
output: {
|
||||
path: path.resolve(__dirname, "static/build"),
|
||||
filename: '[name]-quay-frontend.bundle.js',
|
||||
},
|
||||
resolve: {
|
||||
extensions: [".ts", ".js"],
|
||||
modules: [
|
||||
// Allows us to use the top-level node modules
|
||||
path.resolve(__dirname, '../node_modules'),
|
||||
]
|
||||
},
|
||||
externals: {
|
||||
angular: "angular",
|
||||
jquery: "$",
|
||||
// moment: "moment",
|
||||
// "raven-js": "Raven",
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.ts$/,
|
||||
use: ["ts-loader"],
|
||||
exclude: /node_modules/
|
||||
},
|
||||
{
|
||||
test: /\.css$/,
|
||||
use: [
|
||||
"style-loader",
|
||||
"css-loader?minimize=true",
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.html$/,
|
||||
use: [
|
||||
'ngtemplate-loader?relativeTo=' + (path.resolve(__dirname)),
|
||||
'html-loader',
|
||||
]
|
||||
},
|
||||
]
|
||||
},
|
||||
plugins: [
|
||||
// Replace references to global variables with associated modules
|
||||
new webpack.ProvidePlugin({
|
||||
FileSaver: 'file-saver',
|
||||
angular: "angular",
|
||||
$: "jquery",
|
||||
// moment: "moment",
|
||||
}),
|
||||
],
|
||||
devtool: "cheap-module-source-map",
|
||||
};
|
||||
|
||||
module.exports = config;
|
Reference in a new issue