diff --git a/basta/.editorconfig b/basta/.editorconfig new file mode 100644 index 0000000..9d08a1a --- /dev/null +++ b/basta/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true diff --git a/basta/.gitignore b/basta/.gitignore new file mode 100644 index 0000000..541a820 --- /dev/null +++ b/basta/.gitignore @@ -0,0 +1,14 @@ +.DS_Store +node_modules/ +/dist/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln diff --git a/basta/.postcssrc.js b/basta/.postcssrc.js new file mode 100644 index 0000000..eee3e92 --- /dev/null +++ b/basta/.postcssrc.js @@ -0,0 +1,10 @@ +// https://github.com/michael-ciniawsky/postcss-load-config + +module.exports = { + "plugins": { + "postcss-import": {}, + "postcss-url": {}, + // to edit target browsers: use "browserslist" field in package.json + "autoprefixer": {} + } +} diff --git a/basta/README.md b/basta/README.md new file mode 100644 index 0000000..33d179d --- /dev/null +++ b/basta/README.md @@ -0,0 +1,21 @@ +# basta + +> BaStA frontend + +## Build Setup + +``` bash +# install dependencies +npm install + +# serve with hot reload at localhost:8080 +npm run dev + +# build for production with minification +npm run build + +# build for production and view the bundle analyzer report +npm run build --report +``` + +For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).