icons locales
This commit is contained in:
parent
139cc770a5
commit
33bc79cb70
|
@ -1,4 +1,5 @@
|
|||
import './mdl-override.css';
|
||||
import './styles/fonts/mdi-override.css';
|
||||
|
||||
import './watcher/index';
|
||||
import './paging/index';
|
||||
|
|
Binary file not shown.
|
@ -0,0 +1,6 @@
|
|||
@font-face {
|
||||
font-family: 'Material Icons';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('./Material-Design-Icons.woff2') format('woff2');
|
||||
}
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Salix</title>
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<!-- <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> -->
|
||||
</head>
|
||||
<body>
|
||||
<vn-app id="app"></vn-app>
|
||||
|
|
|
@ -25,17 +25,21 @@ var config = {
|
|||
query: {
|
||||
presets: ['es2015']
|
||||
}
|
||||
},{
|
||||
},
|
||||
{
|
||||
test: /\.html$/,
|
||||
loader: 'html-loader'
|
||||
},{
|
||||
},
|
||||
{
|
||||
test: /\.css$/,
|
||||
loader: 'style-loader!css-loader'
|
||||
},{
|
||||
},
|
||||
{
|
||||
test: /\.scss$/,
|
||||
loader: 'style-loader!css-loader!sass-loader'
|
||||
},{
|
||||
test: /\.(svg|png|ttf)$/,
|
||||
},
|
||||
{
|
||||
test: /\.(svg|png|ttf|woff|woff2)$/,
|
||||
loader: 'file-loader'
|
||||
}
|
||||
]
|
||||
|
@ -56,11 +60,11 @@ var config = {
|
|||
devtool: 'source-map'
|
||||
};
|
||||
|
||||
if(!devMode) {
|
||||
config.plugins.push (
|
||||
if (!devMode) {
|
||||
config.plugins.push (
|
||||
new webpack.optimize.UglifyJsPlugin({
|
||||
minimize: true,
|
||||
compress: { warnings: false }
|
||||
minimize: true,
|
||||
compress: { warnings: false }
|
||||
})
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue