mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-05-30 07:34:05 +03:00
31 lines
827 B
JavaScript
31 lines
827 B
JavaScript
const fs = require('fs')
|
|
const path = require('path')
|
|
const express = require('express')
|
|
const rewrite = require('express-urlrewrite')
|
|
const webpack = require('webpack')
|
|
const webpackDevMiddleware = require('webpack-dev-middleware')
|
|
const WebpackConfig = require('./webpack.config')
|
|
|
|
const app = express()
|
|
|
|
app.use(webpackDevMiddleware(webpack(WebpackConfig), {
|
|
publicPath: '/__build__/',
|
|
stats: {
|
|
colors: true,
|
|
chunks: false
|
|
}
|
|
}))
|
|
|
|
fs.readdirSync(__dirname).forEach(file => {
|
|
if (fs.statSync(path.join(__dirname, file)).isDirectory()) {
|
|
app.use(rewrite('/' + file + '/*', '/' + file + '/index.html'))
|
|
}
|
|
})
|
|
|
|
app.use(express.static(__dirname))
|
|
|
|
const port = process.env.PORT || 8080
|
|
module.exports = app.listen(port, () => {
|
|
console.log(`Server listening on http://localhost:${port}, Ctrl+C to stop`)
|
|
})
|