mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
icons added, sidebar classes, better fonts loader
This commit is contained in:
parent
53aa869d22
commit
b13c169995
8 changed files with 203 additions and 85 deletions
|
|
@ -48,13 +48,13 @@ module.exports = {
|
|||
*
|
||||
* See: http://webpack.github.io/docs/configuration.html#resolve-extensions
|
||||
*/
|
||||
extensions: ['', '.ts', '.js'],
|
||||
extensions: ['', '.ts', '.js', '.css', '.scss'],
|
||||
|
||||
// Make sure root is src
|
||||
root: helpers.root('src'),
|
||||
|
||||
// remove other default values
|
||||
modulesDirectories: ['node_modules']
|
||||
modulesDirectories: ['node_modules', 'bower_components']
|
||||
|
||||
},
|
||||
|
||||
|
|
@ -128,15 +128,15 @@ module.exports = {
|
|||
|
||||
{
|
||||
test: /\.scss$/,
|
||||
loaders: ['raw-loader','sass-loader']
|
||||
loaders: ['raw-loader', 'sass-loader']
|
||||
},
|
||||
|
||||
{
|
||||
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=10000&mimetype=application/font-woff"
|
||||
test: /\.woff(2)?(\?v=.+)?$/, loader: "url-loader?limit=10000&mimetype=application/font-woff"
|
||||
},
|
||||
|
||||
{
|
||||
test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "file-loader"
|
||||
test: /\.(ttf|eot|svg)(\?v=.+)?$/, loader: "file-loader"
|
||||
},
|
||||
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue