- add bulma style

- add components: messages, locate-button
- move index.html into src folder
- move to angular build tools
- styles.css -> styles.scss
This commit is contained in:
Arno Kaimbacher 2021-09-07 08:36:17 +02:00
commit df3561235d
37 changed files with 12724 additions and 645 deletions

View file

@ -63,7 +63,7 @@ module.exports = {
{
test: /\.(png|svg|jpg|gif)$/,
use: [{
loader: 'file-loader',
loader: 'url-loader',
options: {
name: '[name].[ext]',
outputPath: './assets/'
@ -151,7 +151,14 @@ module.exports = {
options: {
sourceMap: true
}
}
},
// Compiles Sass to CSS
{
loader: "sass-loader",
options: {
sourceMap: true
}
}
]
},