refactor: switch to poi compiler

This commit is contained in:
NGPixel
2018-01-21 17:54:43 -05:00
parent 74bd722168
commit 4fd8dfbbee
55 changed files with 3844 additions and 115 deletions

View File

@@ -12,7 +12,6 @@ import { ApolloClient } from 'apollo-client'
import { HttpLink } from 'apollo-link-http'
import { InMemoryCache } from 'apollo-cache-inmemory'
import store from './store'
import icons from '../svg/icons.svg'
// ====================================
// Load Modules
@@ -172,5 +171,7 @@ document.addEventListener('DOMContentLoaded', ev => {
// Load Icons
// ====================================
document.body.insertAdjacentHTML('beforeend', icons)
import(/* webpackChunkName: "icons" */ '../svg/icons.svg').then(icons => {
document.body.insertAdjacentHTML('beforeend', icons)
})
})