Use file-loader to import icon sprites

This commit is contained in:
Mike Greiling 2019-07-29 15:25:35 -05:00
parent 7064d48e2b
commit 7d68ac70aa
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596
2 changed files with 11 additions and 1 deletions

View File

@ -1,4 +1,6 @@
<script>
import iconsPath from '@gitlab/svgs/dist/icons.svg';
// only allow classes in images.scss e.g. s12
const validSizes = [8, 10, 12, 14, 16, 18, 24, 32, 48, 72];
let iconValidator = () => true;
@ -84,7 +86,7 @@ export default {
computed: {
spriteHref() {
return `${gon.sprite_icons}#${this.name}`;
return `${iconsPath}#${this.name}`;
},
iconTestClass() {
return `ic-${this.name}`;

View File

@ -156,8 +156,16 @@ module.exports = {
exclude: /node_modules/,
loader: 'graphql-tag/loader',
},
{
test: /icons\.svg$/,
loader: 'file-loader',
options: {
name: '[name].[hash:8].[ext]',
},
},
{
test: /\.svg$/,
exclude: /icons\.svg$/,
loader: 'raw-loader',
},
{