AcadeDoc/apps/client
Philip Okugbe fe83557767
feat: space export (#506)
* wip

* Space export
* option to export pages with children
* include attachments in exports
* unified export UI

* cleanup

* fix: change export icon

* add export button to space settings

* cleanups

* export name
2024-11-30 19:47:22 +00:00
..
public Allow creation of space 2024-06-24 20:06:57 +01:00
src feat: space export (#506) 2024-11-30 19:47:22 +00:00
.dockerignore fixes 2024-06-07 17:29:34 +01:00
.eslintrc.cjs switch to nx monorepo 2024-01-09 18:58:26 +01:00
.gitignore switch to nx monorepo 2024-01-09 18:58:26 +01:00
index.html Allow creation of space 2024-06-24 20:06:57 +01:00
package.json v0.5.0 2024-10-29 19:50:44 +00:00
postcss.config.js switch to nx monorepo 2024-01-09 18:58:26 +01:00
README.md switch to nx monorepo 2024-01-09 18:58:26 +01:00
tsconfig.json switch to nx monorepo 2024-01-09 18:58:26 +01:00
tsconfig.node.json switch to nx monorepo 2024-01-09 18:58:26 +01:00
vite.config.ts add env variable (#513) 2024-11-28 18:48:25 +00:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
   parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
   },
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list