Skip to content

Commit

Permalink
Fixes webpack.
Browse files Browse the repository at this point in the history
  • Loading branch information
codingfriend1 committed Apr 13, 2017
1 parent 1e80c3e commit 2f86b7a
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 75,971 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ lib/index.js
lib/routes.js
lib/renderer.js
lib/seed
src/compiled-ssr.js
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ COPY config/ /var/www/config

# Expose the default port
EXPOSE 3030
EXPOSE 80
VOLUME /var/www

CMD ["pm2", "start", "src", "--no-daemon"]
5 changes: 3 additions & 2 deletions app/boot/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ require('../views')
const App = require('../views/app.vue')

const filters = require('../filters')

// register global utility filters.
// register global utility filters
Object.keys(filters).forEach(key => {
Vue.filter(key, filters[key])
})
Expand All @@ -23,9 +22,11 @@ const app = new Vue(Object.assign({
data: { store }
}, App))

// Prepare the confirm modal and sync list helpers
prepareSyncList(app.store)
prepareConfirm(app.store)

// Check if user is logged in then launch the app unless we are rendering from the server
if(Vue.prototype.$isServer) {
app.$mount('#app')
} else {
Expand Down
116 changes: 0 additions & 116 deletions app/vendor/flexgrid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -261,122 +261,6 @@ $c80: 80%;
width: $c12;
}

.js .one,
.js .two,
.js .three,
.js .four,
.js .five,
.js .six,
.js .seven,
.js .eight,
.js .nine,
.js .ten,
.js .eleven,
.js .twelve,
.js .twenty,
.js .fourty,
.js .sixty,
.js .eighty,
.js .d-1,
.js .d-2,
.js .d-3,
.js .d-4,
.js .d-5,
.js .d-6,
.js .d-7,
.js .d-8,
.js .d-9,
.js .d-10,
.js .d-11,
.js .d-12,
.js .d-20,
.js .d-40,
.js .d-60,
.js .d-80,
.js .t-1,
.js .t-2,
.js .t-3,
.js .t-4,
.js .t-5,
.js .t-6,
.js .t-7,
.js .t-8,
.js .t-9,
.js .t-10,
.js .t-11,
.js .t-12,
.js .t-20,
.js .t-40,
.js .t-60,
.js .t-80,
.js .h-1,
.js .h-2,
.js .h-3,
.js .h-4,
.js .h-5,
.js .h-6,
.js .h-7,
.js .h-8,
.js .h-9,
.js .h-10,
.js .h-11,
.js .h-12,
.js .h-20,
.js .h-40,
.js .h-60,
.js .h-80,
.js .m-1,
.js .m-2,
.js .m-3,
.js .m-4,
.js .m-5,
.js .m-6,
.js .m-7,
.js .m-8,
.js .m-9,
.js .m-10,
.js .m-11,
.js .m-12,
.js .m-20,
.js .m-40,
.js .m-60,
.js .m-80,
.js .c-1,
.js .c-2,
.js .c-3,
.js .c-4,
.js .c-5,
.js .c-6,
.js .c-7,
.js .c-8,
.js .c-9,
.js .c-10,
.js .c-11,
.js .c-12,
.js .c-20,
.js .c-40,
.js .c-60,
.js .c-80,
.js .a-1,
.js .a-2,
.js .a-3,
.js .a-4,
.js .a-5,
.js .a-6,
.js .a-7,
.js .a-8,
.js .a-9,
.js .a-10,
.js .a-11,
.js .a-12,
.js .a-20,
.js .a-40,
.js .a-60,
.js .a-80,
.js .fg {
margin-right: 0 !important;
}

.inner {
box-sizing: border-box;
}
Expand Down
Loading

0 comments on commit 2f86b7a

Please sign in to comment.