├── .gitignore ├── .idea ├── .gitignore ├── modules.xml └── svelte-auth.iml ├── README.md ├── package.json ├── public ├── favicon.png ├── global.css └── index.html ├── rollup.config.js ├── scripts └── setupTypeScript.js └── src ├── App.svelte ├── interceptors └── axios.js ├── main.js └── pages ├── Home.svelte ├── Login.svelte └── Register.svelte /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/svelte-auth.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/.idea/svelte-auth.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/setupTypeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/scripts/setupTypeScript.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/interceptors/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/src/interceptors/axios.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/Home.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/src/pages/Home.svelte -------------------------------------------------------------------------------- /src/pages/Login.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/src/pages/Login.svelte -------------------------------------------------------------------------------- /src/pages/Register.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalablescripts/svelte-refresh-auth/HEAD/src/pages/Register.svelte --------------------------------------------------------------------------------