Commit f72a665a authored by Grégor JOUET's avatar Grégor JOUET 🔧
Browse files

UI

parent c11cccd6
Loading
Loading
Loading
Loading

ui @ 1e789851

Original line number Diff line number Diff line
Subproject commit 1e789851930da4878b0bae1217b407ed7854e8eb

ui/.babelrc

0 → 100644
+12 −0
Original line number Diff line number Diff line
{
  "presets": [
    ["env", {
      "modules": false,
      "targets": {
        "browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
      }
    }],
    "stage-2"
  ],
  "plugins": ["transform-vue-jsx", "transform-runtime"]
}

ui/.editorconfig

0 → 100644
+9 −0
Original line number Diff line number Diff line
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

ui/.env

0 → 100644
+1 −0
Original line number Diff line number Diff line
API_URL=http://localhost:5000
 No newline at end of file

ui/.eslintignore

0 → 100644
+4 −0
Original line number Diff line number Diff line
/build/
/config/
/dist/
/*.js
Loading