mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
70 lines
2.7 KiB
JavaScript
70 lines
2.7 KiB
JavaScript
const path = require('path')
|
|
const webpack = require('webpack')
|
|
const Dotenv = require('dotenv-webpack')
|
|
const StatsPlugin = require('stats-webpack-plugin')
|
|
const HtmlWebpackPlugin = require('vue-html-webpack-plugin')
|
|
|
|
// vue.config.js
|
|
module.exports = {
|
|
devServer: {
|
|
port: process.env.PORT || 3000,
|
|
},
|
|
pluginOptions: {
|
|
i18n: {
|
|
locale: 'de',
|
|
fallbackLocale: 'de',
|
|
localeDir: 'locales',
|
|
enableInSFC: false,
|
|
},
|
|
},
|
|
lintOnSave: true,
|
|
publicPath: '/',
|
|
configureWebpack: {
|
|
// Set up all the aliases we use in our app.
|
|
resolve: {
|
|
alias: {
|
|
assets: path.join(__dirname, 'src/assets'),
|
|
},
|
|
},
|
|
plugins: [
|
|
// .env and Environment Variables
|
|
new Dotenv(),
|
|
new webpack.DefinePlugin({
|
|
// Those are Environment Variables transmitted via Docker and are only available when defined here aswell
|
|
// 'process.env.DOCKER_WORKDIR': JSON.stringify(process.env.DOCKER_WORKDIR),
|
|
// 'process.env.BUILD_DATE': JSON.stringify(process.env.BUILD_DATE),
|
|
// 'process.env.BUILD_VERSION': JSON.stringify(process.env.BUILD_VERSION),
|
|
'process.env.BUILD_COMMIT': JSON.stringify(process.env.BUILD_COMMIT),
|
|
// 'process.env.PORT': JSON.stringify(process.env.PORT),
|
|
}),
|
|
// generate webpack stats to allow analysis of the bundlesize
|
|
new StatsPlugin('webpack.stats.json'),
|
|
new HtmlWebpackPlugin({
|
|
vue: true,
|
|
title: 'XGRADIDO',
|
|
template: 'public/index.html',
|
|
description_de:
|
|
'Dankbarkeit ist die Währung der neuen Zeit. Immer mehr Menschen entfalten ihr Potenzial und gestalten eine gute Zukunft für alle.',
|
|
description_en:
|
|
'Gratitude is the currency of the new age. More and more people are unleashing their potential and shaping a good future for all.',
|
|
keywords_de:
|
|
'Grundeinkommen, Währung, Dankbarkeit, Schenk-Ökonomie, Natürliche Ökonomie des Lebens, Ökonomie, Ökologie, Potenzialentfaltung, Schenken und Danken, Kreislauf des Lebens, Geldsystem',
|
|
keywords_en:
|
|
'Basic Income, Currency, Gratitude, Gift Economy, Natural Economy of Life, Economy, Ecology, Potential Development, Giving and Thanking, Cycle of Life, Monetary System',
|
|
author: 'Bernd Hückstädt - Gradido-Akademie',
|
|
url: 'http://localhost',
|
|
identifier_URL: 'http://localhost',
|
|
icon: './favicon.png',
|
|
}),
|
|
],
|
|
infrastructureLogging: {
|
|
level: 'warn', // 'none' | 'error' | 'warn' | 'info' | 'log' | 'verbose'
|
|
},
|
|
},
|
|
css: {
|
|
// Enable CSS source maps.
|
|
sourceMap: process.env.NODE_ENV !== 'production',
|
|
},
|
|
outputDir: path.resolve(__dirname, './dist'),
|
|
}
|